runtime.p.runnext (field)

14 uses

	runtime (current package)
		proc.go#L4148: 	if mp.spinning && (pp.runnext != 0 || pp.runqhead != pp.runqtail) {
		proc.go#L5802: 	if pp.runnext != 0 {
		proc.go#L5803: 		globrunqputhead(pp.runnext.ptr())
		proc.go#L5804: 		pp.runnext = 0
		proc.go#L7035: 		runnext := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&pp.runnext)))
		proc.go#L7076: 		oldnext := pp.runnext
		proc.go#L7077: 		if !pp.runnext.cas(oldnext, guintptr(unsafe.Pointer(gp))) {
		proc.go#L7180: 	next := pp.runnext
		proc.go#L7184: 	if next != 0 && pp.runnext.cas(next, 0) {
		proc.go#L7204: 	oldNext := pp.runnext
		proc.go#L7205: 	if oldNext != 0 && pp.runnext.cas(oldNext, 0) {
		proc.go#L7251: 				if next := pp.runnext; next != 0 {
		proc.go#L7272: 					if !pp.runnext.cas(next, 0) {
		runtime2.go#L677: 	runnext guintptr